Change includes to improve desbordante performance.#719
Draft
PodushkaPIR wants to merge 8 commits into
Draft
Conversation
6a07ab6 to
c3fb2de
Compare
…ructure Update includes in model data structures, config options, parsers, utility code, and base algorithm classes. Each file now includes only what it directly uses.
Update includes in functional dependency discovery algorithms: Pyro, Tane, HyFD, EulerFD, SFD, FD verifier, AFD metric, and others.
…d OD algorithms Update includes in inclusion dependency (Mind, Sind, Faida), unique column combination (HyUCC, HPIValid, PyroUCC), and order dependency (FastOD) algorithms.
…gorithms and tests Update includes in CFD, MD, DC, GFD, NAR, AR, ND, metric, FSM, statistics, DD, and algebraic constraints algorithms. Also update all unit tests.
09e7cb6 to
87c0195
Compare
Headers across the project had includes that nothing directly uses. Removing them prevents unnecessary recompilation and clarifies the dependency graph. Also remove duplicate boost umbrella/internal includes that IWYU added alongside existing public headers.
Reformat include order and alignment in files modified by IWYU analysis to satisfy CI formatting checks.
This was referenced May 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains changes made using include-what-you-use (version 0.26). Header inclusions now conform to the Google C++ Style Guide.
#pragma onceto header files.// IWYU pragma: begin_exports / end_exports--- marks headers whose includes are part of public API// IWYU pragma: keep--- prevents IWYU from suggesting removal of includes that are required transitively<boost/functional/hash.hpp>-><boost/container_hash/hash.hpp>)This PR is marked as a Draft because the CI
clang-tidyaction cannot handle such a large number of files at once. To resolve this, I am splitting these changes into several smaller PRs.